From 7d36ae597f84da3e15a1b50a97f1bd0c4d29143d Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 14 Sep 2006 14:42:30 +0000 Subject: [PATCH] =?utf8?q?(ido-ignore-item-p):=20Allow=20any=20kind=20of?= =?utf8?q?=20functions=20in=20ignore=20lists.=20From=20Micha=C3=ABl=20Cadi?= =?utf8?q?lhac.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lisp/ido.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ido.el b/lisp/ido.el index e3baa71396b..432347717f5 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -3618,7 +3618,7 @@ for first matching file." ((stringp nextstr) (and (>= flen (setq slen (length nextstr))) (string-equal (substring name (- flen slen)) nextstr))) - ((fboundp nextstr) (funcall nextstr name)) + ((functionp nextstr) (funcall nextstr name)) (t nil)) (setq ignorep t ext-list nil @@ -3628,7 +3628,7 @@ for first matching file." (setq nextstr (car re-list)) (if (cond ((stringp nextstr) (string-match nextstr name)) - ((fboundp nextstr) (funcall nextstr name)) + ((functionp nextstr) (funcall nextstr name)) (t nil)) (setq ignorep t re-list nil) -- 2.30.2